PHP加入Html
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<?php echo "this is me" ?>
</body>
</html>
輸出結果:
this is me
PHP中加入Html標籤
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<?php
echo 'this is me <br>';
echo '<a href="http://google.com">enter google</a><br>';
echo '<b>this is me</b><br>';
?>
</body>
</html>
加入<br>
空行、<a></a>
超連結、<b></b>
粗體標籤。
輸出結果:
this is me
enter google
this is me
PHP註解
註解:
在寫程式時為程式適時地加入註解,除了可以幫助理解,更可以讓他人讀懂,特別是一群人一起完成的程式,是一個可以培養的好習慣。
1.單行註解:
<?php //註解 ?>
2.多行註解:
<?php
/*註解1
註解2
註解3
*/
?>
HTML註解
單行、多行註解:
<html>
<!--註解-->
</html>
CSS註解
單行、多行註解:
<style>
<!--註解-->
</style>